home *** CD-ROM | disk | FTP | other *** search
/ How Many Bugs in a Box / How Many Bugs in a Box.cdr / bugs / act3 / 00063_victory.ls < prev    next >
Encoding:
Text File  |  1995-03-28  |  444 b   |  27 lines

  1. on exitFrame
  2.   global WhichBug, lev, TRIAL
  3.   set TRIAL to 1
  4.   updateStage()
  5.   set WhichBug to WhichBug + 1
  6.   if lev = 1 then
  7.     if WhichBug > 2 then
  8.       go("hurrah")
  9.       exit
  10.     end if
  11.   end if
  12.   if lev = 2 then
  13.     if WhichBug > 4 then
  14.       go("hurrah")
  15.       exit
  16.     end if
  17.   end if
  18.   if lev = 3 then
  19.     if WhichBug > 6 then
  20.       go("hurrah")
  21.       exit
  22.     end if
  23.   end if
  24.   put EMPTY into field "changer"
  25.   go("levela" & lev)
  26. end
  27.